home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / perl5 / RPC / XML.pm
Text File  |  2008-09-19  |  52KB  |  1,728 lines

  1. ###############################################################################
  2. #
  3. # This file copyright (c) 2001-2008 Randy J. Ray, all rights reserved
  4. #
  5. # See "LICENSE" in the documentation for licensing and redistribution terms.
  6. #
  7. ###############################################################################
  8. #
  9. #   $Id: XML.pm 359 2008-09-19 09:22:00Z rjray $
  10. #
  11. #   Description:    This module provides the core XML <-> RPC conversion and
  12. #                   structural management.
  13. #
  14. #   Functions:      This module contains many, many subclasses. Better to
  15. #                   examine them individually.
  16. #
  17. #   Libraries:      RPC::XML::base64 uses MIME::Base64
  18. #
  19. #   Global Consts:  $VERSION
  20. #
  21. ###############################################################################
  22.  
  23. package RPC::XML;
  24.  
  25. use 5.005;
  26. use strict;
  27. use vars qw(@EXPORT @EXPORT_OK %EXPORT_TAGS @ISA $VERSION $ERROR
  28.             %xmlmap $xmlre $ENCODING $FORCE_STRING_ENCODING);
  29. use subs qw(time2iso8601 smart_encode bytelength);
  30.  
  31. # The following is cribbed from SOAP::Lite, tidied up to suit my tastes
  32. BEGIN
  33. {
  34.     no strict 'refs';
  35.  
  36.     eval "use bytes";
  37.     # Re-worked this passage to continue supporting perl 5.005. It tried to
  38.     # compile the "use bytes" in the second block even if the conditional never
  39.     # travelled that path. So, explicit eval strings for everyone.
  40.     if ($@)
  41.     {
  42.         eval 'sub bytelength { length(@_ ? $_[0] : $_) }';
  43.     }
  44.     else
  45.     {
  46.         eval 'sub bytelength { use bytes; length(@_ ? $_[0] : $_) }';
  47.     }
  48.  
  49.     %xmlmap = ( '>' => '>',   '<' => '<', '&' => '&',
  50.                 '"' => '"', "'" => ''');
  51.     $xmlre = join('', keys %xmlmap); $xmlre = qr/([$xmlre])/;
  52.  
  53.     # Default encoding:
  54.     $ENCODING = 'us-ascii';
  55.  
  56.     # force strings?
  57.     $FORCE_STRING_ENCODING = 0;
  58. }
  59.  
  60. require Exporter;
  61.  
  62. @ISA = qw(Exporter);
  63. @EXPORT_OK = qw(time2iso8601 smart_encode bytelength
  64.                 RPC_BOOLEAN RPC_INT RPC_I4 RPC_DOUBLE RPC_DATETIME_ISO8601
  65.                 RPC_BASE64 RPC_STRING $ENCODING $FORCE_STRING_ENCODING);
  66. %EXPORT_TAGS = (types => [ qw(RPC_BOOLEAN RPC_INT RPC_I4 RPC_DOUBLE RPC_STRING
  67.                               RPC_DATETIME_ISO8601 RPC_BASE64) ],
  68.                 all   => [ @EXPORT_OK ]);
  69.  
  70. $VERSION = '1.41';
  71.  
  72. # Global error string
  73. $ERROR = '';
  74.  
  75. # All of the RPC_* functions are convenience-encoders
  76. sub RPC_STRING           ( $ ) { RPC::XML::string->new($_[0]) }
  77. sub RPC_BOOLEAN          ( $ ) { RPC::XML::boolean->new($_[0]) }
  78. sub RPC_INT              ( $ ) { RPC::XML::int->new($_[0]) }
  79. sub RPC_I4               ( $ ) { RPC::XML::i4->new($_[0]) }
  80. sub RPC_I8               ( $ ) { RPC::XML::i8->new($_[0]) }
  81. sub RPC_DOUBLE           ( $ ) { RPC::XML::double->new($_[0]) }
  82. sub RPC_DATETIME_ISO8601 ( $ ) { RPC::XML::datetime_iso8601->new($_[0]) }
  83. sub RPC_BASE64           ( $ ) { RPC::XML::base64->new($_[0]) }
  84.  
  85. # This is a dead-simple ISO8601-from-UNIX-time stringifier. Always expresses
  86. # time in UTC.
  87. sub time2iso8601
  88. {
  89.     my $time = shift || time;
  90.     my $zone = shift || '';
  91.  
  92.     my @time = gmtime($time);
  93.     $time = sprintf("%4d%02d%02dT%02d:%02d:%02dZ",
  94.                     $time[5] + 1900, $time[4] + 1, @time[3, 2, 1, 0]);
  95.     if ($zone)
  96.     {
  97.         my $char = $zone > 0 ? '+' : '-';
  98.         chop $time; # Lose the Z if we're specifying a zone
  99.         $time .= $char . sprintf('%02d:00', abs($zone));
  100.     }
  101.  
  102.     $time;
  103. }
  104.  
  105. # This is a (futile?) attempt to provide a "smart" encoding method that will
  106. # take a Perl scalar and promote it to the appropriate RPC::XML::_type_.
  107. {
  108.     my $MaxInt      = 2147483647;
  109.     my $MinInt      = -2147483648;
  110.     my $MaxBigInt   = 9223372036854775807;
  111.     my $MinBigInt   = -9223372036854775808;
  112.  
  113.     my $MaxDouble   = 1e37;
  114.     my $MinDouble   = $MaxDouble * -1;
  115.  
  116.     sub smart_encode
  117.     {
  118.         my @values = @_;
  119.         my $type;
  120.  
  121.         @values = map
  122.         {
  123.             if (!defined $_)
  124.             {
  125.                 $type = RPC::XML::string->new('');
  126.             }
  127.             elsif (ref $_)
  128.             {
  129.                 # Skip any that have already been encoded
  130.                 if (UNIVERSAL::isa($_, 'RPC::XML::datatype'))
  131.                 {
  132.                     $type = $_;
  133.                 }
  134.                 elsif (UNIVERSAL::isa($_, 'HASH'))
  135.                 {
  136.                     $type = RPC::XML::struct->new($_);
  137.                 }
  138.                 elsif (UNIVERSAL::isa($_, 'ARRAY'))
  139.                 {
  140.                     $type = RPC::XML::array->new($_);
  141.                 }
  142.                 elsif (UNIVERSAL::isa($_, 'SCALAR'))
  143.                 {
  144.                     # This is a rare excursion into recursion, since the scalar
  145.                     # nature (de-refed from the object, so no longer magic)
  146.                     # will prevent further recursing.
  147.                     $type = smart_encode($$_);
  148.                 }
  149.                 else
  150.                 {
  151.                     # If the user passed in a reference that didn't pass one
  152.                     # of the above tests, we can't do anything with it:
  153.                     die "Un-convertable reference: $_, cannot use";
  154.                 }
  155.             }
  156.             # You have to check ints first, because they match the
  157.             # next pattern too
  158.             # make sure not to encode digits that are larger than i4
  159.             elsif (! $FORCE_STRING_ENCODING and /^[-+]?\d+$/
  160.                    and $_ > $MinBigInt and $_ < $MaxBigInt)
  161.             {
  162.                 $type = (abs($_) > $MaxInt) ? 'RPC::XML::i8' : 'RPC::XML::int';
  163.                 $type = $type->new($_);
  164.             }
  165.             # Pattern taken from perldata(1)
  166.             elsif (! $FORCE_STRING_ENCODING and
  167.                    /^([+-]?)(?=\d|\.\d)\d*(\.\d*)?([Ee]([+-]?\d+))?$/
  168.                    and $_ > $MinDouble and $_ < $MaxDouble)
  169.             {
  170.                 $type = RPC::XML::double->new($_);
  171.             }
  172.             else
  173.             {
  174.                 $type = RPC::XML::string->new($_);
  175.             }
  176.  
  177.             $type;
  178.         } @values;
  179.  
  180.         return (wantarray ? @values : $values[0]);
  181.     }
  182. }
  183.  
  184. # This is a (mostly) empty class used as a common superclass for simple and
  185. # complex types, so that their derivatives may be universally type-checked.
  186. package RPC::XML::datatype;
  187. use vars qw(@ISA);
  188. @ISA = ();
  189.  
  190. sub type { my $class = ref($_[0]) || $_[0]; $class =~ s/.*://; $class }
  191. sub is_fault { 0 }
  192.  
  193. ###############################################################################
  194. #
  195. #   Package:        RPC::XML::simple_type
  196. #
  197. #   Description:    A base class for the simpler type-classes to inherit from,
  198. #                   for default constructor, stringification, etc.
  199. #
  200. ###############################################################################
  201. package RPC::XML::simple_type;
  202.  
  203. use strict;
  204. use vars qw(@ISA);
  205.  
  206. @ISA = qw(RPC::XML::datatype);
  207.  
  208. # new - a generic constructor that presumes the value being stored is scalar
  209. sub new
  210. {
  211.     my $class = shift;
  212.     my $value = shift;
  213.  
  214.     $RPC::XML::ERROR = '';
  215.     $class = ref($class) || $class;
  216.     if (ref $value)
  217.     {
  218.         # If it is a scalar reference, just deref
  219.         if (UNIVERSAL::isa($value, 'SCALAR'))
  220.         {
  221.             $value = $$value;
  222.         }
  223.         else
  224.         {
  225.             # We can only manage scalar references (or blessed scalar refs)
  226.             $RPC::XML::ERROR = "${class}::new: Cannot instantiate from a " .
  227.                 'reference not derived from scalar';
  228.         }
  229.     }
  230.     bless \$value, $class;
  231. }
  232.  
  233. # value - a generic accessor
  234. sub value
  235. {
  236.     my $self = shift;
  237.  
  238.     $$self;
  239. }
  240.  
  241. # as_string - return the value as an XML snippet
  242. sub as_string
  243. {
  244.     my $self = shift;
  245.  
  246.     my $class;
  247.     return unless ($class = ref($self));
  248.     $class =~ s/^.*\://;
  249.     $class =~ s/_/./g;
  250.     substr($class, 0, 8) = 'dateTime' if (substr($class, 0, 8) eq 'datetime');
  251.  
  252.     "<$class>$$self</$class>";
  253. }
  254.  
  255. # Serialization for simple types is just a matter of sending as_string over
  256. sub serialize
  257. {
  258.     my ($self, $fh) = @_;
  259.  
  260.     print $fh $self->as_string;
  261. }
  262.  
  263. # The switch to serialization instead of in-memory strings means having to
  264. # calculate total size in bytes for Content-Length headers:
  265. sub length
  266. {
  267.     my $self = shift;
  268.  
  269.     length($self->as_string);
  270. }
  271.  
  272. ###############################################################################
  273. #
  274. #   Package:        RPC::XML::int
  275. #
  276. #   Description:    Data-type class for integers
  277. #
  278. ###############################################################################
  279. package RPC::XML::int;
  280.  
  281. use strict;
  282. use vars qw(@ISA);
  283.  
  284. @ISA = qw(RPC::XML::simple_type);
  285.  
  286. ###############################################################################
  287. #
  288. #   Package:        RPC::XML::i4
  289. #
  290. #   Description:    Data-type class for i4. Forces data into an int object.
  291. #
  292. ###############################################################################
  293. package RPC::XML::i4;
  294.  
  295. use strict;
  296. use vars qw(@ISA);
  297.  
  298. @ISA = qw(RPC::XML::simple_type);
  299.  
  300. ###############################################################################
  301. #
  302. #   Package:        RPC::XML::i8
  303. #
  304. #   Description:    Data-type class for i8. Forces data into a 8-byte int.
  305. #
  306. ###############################################################################
  307. package RPC::XML::i8;
  308.  
  309. use strict;
  310. use vars qw(@ISA);
  311.  
  312. @ISA = qw(RPC::XML::simple_type);
  313.  
  314. ###############################################################################
  315. #
  316. #   Package:        RPC::XML::double
  317. #
  318. #   Description:    The "double" type-class
  319. #
  320. ###############################################################################
  321. package RPC::XML::double;
  322.  
  323. use strict;
  324. use vars qw(@ISA);
  325.  
  326. @ISA = qw(RPC::XML::simple_type);
  327.  
  328. sub as_string
  329. {
  330.     my $self = shift;
  331.  
  332.     return unless (my $class = ref($self));
  333.     $class =~ s/^.*\://;
  334.     (my $value = sprintf("%.20f", $$self)) =~ s/0+$//;
  335.  
  336.     "<$class>$value</$class>";
  337. }
  338.  
  339. ###############################################################################
  340. #
  341. #   Package:        RPC::XML::string
  342. #
  343. #   Description:    The "string" type-class
  344. #
  345. ###############################################################################
  346. package RPC::XML::string;
  347.  
  348. use strict;
  349. use vars qw(@ISA);
  350.  
  351. @ISA = qw(RPC::XML::simple_type);
  352.  
  353. # as_string - return the value as an XML snippet
  354. sub as_string
  355. {
  356.     my $self = shift;
  357.  
  358.     my ($class, $value);
  359.  
  360.     return unless ($class = $self->type);
  361.  
  362.     ($value = defined $$self ? $$self : '' )
  363.         =~ s/$RPC::XML::xmlre/$RPC::XML::xmlmap{$1}/ge;
  364.  
  365.     "<$class>$value</$class>";
  366. }
  367.  
  368. # Overloaded from simple_type, so that we can apply bytelength to the body
  369. sub length
  370. {
  371.     my $self = shift;
  372.  
  373.     RPC::XML::bytelength($self->as_string);
  374. }
  375.  
  376. ###############################################################################
  377. #
  378. #   Package:        RPC::XML::boolean
  379. #
  380. #   Description:    The type-class for boolean data. Handles some "extra" cases
  381. #
  382. ###############################################################################
  383. package RPC::XML::boolean;
  384.  
  385. use strict;
  386. use vars qw(@ISA);
  387.  
  388. @ISA = qw(RPC::XML::simple_type);
  389.  
  390. # This constructor allows any of true, false, yes or no to be specified
  391. sub new
  392. {
  393.     my $class = shift;
  394.     my $value = shift || 0;
  395.  
  396.     $RPC::XML::ERROR = '';
  397.     if ($value =~ /true|yes|1/i)
  398.     {
  399.         $value = 1;
  400.     }
  401.     elsif ($value =~ /false|no|0/i)
  402.     {
  403.         $value = 0;
  404.     }
  405.     else
  406.     {
  407.         $class = ref($class) || $class;
  408.         $RPC::XML::ERROR = "${class}::new: Value must be one of yes, no, " .
  409.             'true, false, 1, 0 (case-insensitive)';
  410.         return undef;
  411.     }
  412.  
  413.     bless \$value, $class;
  414. }
  415.  
  416. ###############################################################################
  417. #
  418. #   Package:        RPC::XML::datetime_iso8601
  419. #
  420. #   Description:    This is the class to manage ISO8601-style date/time values
  421. #
  422. ###############################################################################
  423. package RPC::XML::datetime_iso8601;
  424.  
  425. use strict;
  426. use vars qw(@ISA);
  427.  
  428. @ISA = qw(RPC::XML::simple_type);
  429.  
  430. sub type { 'dateTime.iso8601' };
  431.  
  432. ###############################################################################
  433. #
  434. #   Package:        RPC::XML::array
  435. #
  436. #   Description:    This class encapsulates the array data type. Each element
  437. #                   within the array should be one of the datatype classes.
  438. #
  439. ###############################################################################
  440. package RPC::XML::array;
  441.  
  442. use strict;
  443. use vars qw(@ISA);
  444.  
  445. @ISA = qw(RPC::XML::datatype);
  446.  
  447. # The constructor for this class mainly needs to sanity-check the value data
  448. sub new
  449. {
  450.     my $class = shift;
  451.     my @args = (UNIVERSAL::isa($_[0], 'ARRAY')) ? @{$_[0]} : @_;
  452.  
  453.     # First ensure that each argument passed in is itself one of the data-type
  454.     # class instances.
  455.     for (@args)
  456.     {
  457.         $_ = RPC::XML::smart_encode($_)
  458.             unless (UNIVERSAL::isa($_, 'RPC::XML::datatype'));
  459.     }
  460.  
  461.     bless \@args, $class;
  462. }
  463.  
  464. # This became more complex once it was shown that there may be a need to fetch
  465. # the value while preserving the underlying objects.
  466. sub value
  467. {
  468.     my $self = shift;
  469.     my $no_recurse = shift || 0;
  470.     my $ret;
  471.  
  472.     if ($no_recurse)
  473.     {
  474.         $ret = [ @$self ];
  475.     }
  476.     else
  477.     {
  478.         $ret = [ map { $_->value } @$self ];
  479.     }
  480.  
  481.     $ret;
  482. }
  483.  
  484. sub as_string
  485. {
  486.     my $self = shift;
  487.  
  488.     join('',
  489.          '<array><data>',
  490.          (map { ('<value>', $_->as_string(), '</value>') } (@$self)),
  491.          '</data></array>');
  492. }
  493.  
  494. # Serialization for arrays is not as straight-forward as it is for simple
  495. # types. One or more of the elements may be a base64 object, which has a
  496. # non-trivial serialize() method. Thus, rather than just sending the data from
  497. # as_string down the pipe, instead call serialize() recursively on all of the
  498. # elements.
  499. sub serialize
  500. {
  501.     my ($self, $fh) = @_;
  502.  
  503.     print $fh '<array><data>';
  504.     for (@$self)
  505.     {
  506.         print $fh '<value>';
  507.         $_->serialize($fh);
  508.         print $fh '</value>';
  509.     }
  510.     print $fh '</data></array>';
  511. }
  512.  
  513. # Length calculation starts to get messy here, due to recursion
  514. sub length
  515. {
  516.     my $self = shift;
  517.  
  518.     # Start with the constant components in the text
  519.     my $len = 28; # That the <array><data></data></array> part
  520.     for (@$self) { $len += (15 + $_->length) } # 15 is for <value></value>
  521.  
  522.     $len;
  523. }
  524.  
  525. ###############################################################################
  526. #
  527. #   Package:        RPC::XML::struct
  528. #
  529. #   Description:    This is the "struct" data class. The struct is like Perl's
  530. #                   hash, with the constraint that all values are instances
  531. #                   of the datatype classes.
  532. #
  533. ###############################################################################
  534. package RPC::XML::struct;
  535.  
  536. use strict;
  537. use vars qw(@ISA);
  538.  
  539. @ISA = qw(RPC::XML::datatype);
  540.  
  541. # The constructor for this class mainly needs to sanity-check the value data
  542. sub new
  543. {
  544.     my $class = shift;
  545.     my %args = (UNIVERSAL::isa($_[0], 'HASH')) ? %{$_[0]} : @_;
  546.  
  547.     # First ensure that each argument passed in is itself one of the data-type
  548.     # class instances.
  549.     for (keys %args)
  550.     {
  551.         $args{$_} = RPC::XML::smart_encode($args{$_})
  552.             unless (UNIVERSAL::isa($args{$_}, 'RPC::XML::datatype'));
  553.     }
  554.  
  555.     bless \%args, $class;
  556. }
  557.  
  558. # This became more complex once it was shown that there may be a need to fetch
  559. # the value while preserving the underlying objects.
  560. sub value
  561. {
  562.     my $self = shift;
  563.     my $no_recurse = shift || 0;
  564.     my %value;
  565.  
  566.     if ($no_recurse)
  567.     {
  568.         %value = map { $_, $self->{$_} } (keys %$self);
  569.     }
  570.     else
  571.     {
  572.         %value = map { $_, $self->{$_}->value } (keys %$self);
  573.     }
  574.  
  575.     \%value;
  576. }
  577.  
  578. sub as_string
  579. {
  580.     my $self = shift;
  581.     my $key;
  582.  
  583.     join('',
  584.          '<struct>',
  585.          (map {
  586.              ($key = $_) =~ s/$RPC::XML::xmlre/$RPC::XML::xmlmap{$1}/ge;
  587.              ("<member><name>$key</name><value>",
  588.               $self->{$_}->as_string,
  589.               '</value></member>')
  590.          } (keys %$self)),
  591.          '</struct>');
  592. }
  593.  
  594. # As with the array type, serialization here isn't cut and dried, since one or
  595. # more values may be base64.
  596. sub serialize
  597. {
  598.     my ($self, $fh) = @_;
  599.     my $key;
  600.  
  601.     print $fh '<struct>';
  602.     for (keys %$self)
  603.     {
  604.         ($key = $_) =~ s/$RPC::XML::xmlre/$RPC::XML::xmlmap{$1}/ge;
  605.         print $fh "<member><name>$key</name><value>";
  606.         $self->{$_}->serialize($fh);
  607.         print $fh '</value></member>';
  608.     }
  609.     print $fh '</struct>';
  610. }
  611.  
  612. # Length calculation is a real pain here. But not as bad as base64 promises
  613. sub length
  614. {
  615.     my $self = shift;
  616.  
  617.     my $len = 17; # <struct></struct>
  618.     for (keys %$self)
  619.     {
  620.         $len += 45; # For all the constant XML presence
  621.         $len += length($_);
  622.         $len += $self->{$_}->length;
  623.     }
  624.  
  625.     $len;
  626. }
  627.  
  628. ###############################################################################
  629. #
  630. #   Package:        RPC::XML::base64
  631. #
  632. #   Description:    This is the base64-encoding type. Plain data is passed in,
  633. #                   plain data is returned. Plain is always returned. All the
  634. #                   encoding/decoding is done behind the scenes.
  635. #
  636. ###############################################################################
  637. package RPC::XML::base64;
  638.  
  639. use strict;
  640. use vars qw(@ISA);
  641.  
  642. @ISA = qw(RPC::XML::datatype);
  643.  
  644. sub new
  645. {
  646.     require MIME::Base64;
  647.     my ($class, $value, $encoded) = @_;
  648.  
  649.     my $self = {};
  650.  
  651.     $RPC::XML::ERROR = '';
  652.  
  653.     $self->{encoded} = $encoded ? 1 : 0; # Is this already Base-64?
  654.     $self->{inmem}   = 0;                # To signal in-memory vs. filehandle
  655.  
  656.     # First, determine if the call sent actual data, a reference to actual
  657.     # data, or an open filehandle.
  658.     if (ref($value) and UNIVERSAL::isa($value, 'GLOB'))
  659.     {
  660.         # This is a seekable filehandle (or acceptable substitute thereof).
  661.         # This assignment increments the ref-count, and prevents destruction
  662.         # in other scopes.
  663.         binmode $value;
  664.         $self->{value_fh} = $value;
  665.         $self->{fh_pos}   = tell($value);
  666.     }
  667.     else
  668.     {
  669.         # Not a filehandle. Might be a scalar ref, but other than that it's
  670.         # in-memory data.
  671.         $self->{inmem}++;
  672.         $self->{value} = ref($value) ? $$value : $value;
  673.         unless (defined $value and length $value)
  674.         {
  675.             $class = ref($class) || $class;
  676.             $RPC::XML::ERROR = "${class}::new: Must be called with non-null " .
  677.                 'data or an open, seekable filehandle';
  678.             return undef;
  679.         }
  680.         # We want in-memory data to always be in the clear, to reduce the tests
  681.         # needed in value(), below.
  682.         if ($self->{encoded})
  683.         {
  684.             local($^W) = 0; # Disable warnings in case the data is underpadded
  685.             $self->{value} = MIME::Base64::decode_base64($self->{value});
  686.             $self->{encoded} = 0;
  687.         }
  688.     }
  689.  
  690.     bless $self, $class;
  691. }
  692.  
  693. sub value
  694. {
  695.     my $self      = shift;
  696.     my $as_base64 = (defined $_[0] and $_[0]) ? 1 : 0;
  697.  
  698.     # There are six cases here, based on whether or not the data exists in
  699.     # Base-64 or clear form, and whether the data is in-memory or needs to be
  700.     # read from a filehandle.
  701.     if ($self->{inmem})
  702.     {
  703.         # This is simplified into two cases (rather than four) since we always
  704.         # keep in-memory data as cleartext
  705.         return $as_base64 ?
  706.             MIME::Base64::encode_base64($self->{value}, '') : $self->{value};
  707.     }
  708.     else
  709.     {
  710.         # This is trickier with filehandle-based data, since we chose not to
  711.         # change the state of the data. Thus, the behavior is dependant not
  712.         # only on $as_base64, but also on $self->{encoded}. This is why we
  713.         # took pains to explicitly set $as_base64 to either 0 or 1, rather than
  714.         # just accept whatever non-false value the caller sent. It makes this
  715.         # first test possible.
  716.         my ($accum, $pos, $res);
  717.         $accum = '';
  718.  
  719.         $self->{fh_pos} = tell($self->{value_fh});
  720.         seek($self->{value_fh}, 0, 0);
  721.         if ($as_base64 == $self->{encoded})
  722.         {
  723.             $pos = 0;
  724.             while ($res = read($self->{value_fh}, $accum, 1024, $pos))
  725.             {
  726.                 $pos += $res;
  727.             }
  728.         }
  729.         else
  730.         {
  731.             if ($as_base64)
  732.             {
  733.                 # We're reading cleartext and converting it to Base-64. Read in
  734.                 # multiples of 57 bytes for best Base-64 calculation. The
  735.                 # choice of 60 for the multiple is purely arbitrary.
  736.                 $res = '';
  737.                 while (read($self->{value_fh}, $res, 60*57))
  738.                 {
  739.                     $accum .= MIME::Base64::encode_base64($res, '');
  740.                 }
  741.             }
  742.             else
  743.             {
  744.                 # Reading Base-64 and converting it back to cleartext. If the
  745.                 # Base-64 data doesn't have any line-breaks, no telling how
  746.                 # much memory this will eat up.
  747.                 local($^W) = 0; # Disable padding-length warnings
  748.                 $pos = $self->{value_fh};
  749.                 while (defined($res = <$pos>))
  750.                 {
  751.                     $accum .= MIME::Base64::decode_base64($res);
  752.                 }
  753.             }
  754.         }
  755.         seek($self->{value_fh}, $self->{fh_pos}, 0);
  756.  
  757.         return $accum;
  758.     }
  759. }
  760.  
  761. # The value needs to be encoded before being output
  762. sub as_string
  763. {
  764.     my $self = shift;
  765.  
  766.     '<base64>' . $self->value('encoded') . '</base64>';
  767. }
  768.  
  769. # If it weren't for Tellme and their damnable WAV files, and ViAir and their
  770. # half-baked XML-RPC server, I wouldn't have to do any of this...
  771. sub serialize
  772. {
  773.     my ($self, $fh) = @_;
  774.  
  775.     # If the data is in-memory, just call as_string and pass it down the pipe
  776.     if ($self->{inmem})
  777.     {
  778.         print $fh $self->as_string;
  779.     }
  780.     else
  781.     {
  782.         # If it's a filehandle, at least we take comfort in knowing that we
  783.         # always want Base-64 at this level.
  784.         my $buf = '';
  785.         $self->{fh_pos} = tell($self->{value_fh});
  786.         seek($self->{value_fh}, 0, 0);
  787.         print $fh '<base64>';
  788.         if ($self->{encoded})
  789.         {
  790.             # Easy-- just use read() to send it down in palatably-sized chunks
  791.             while (read($self->{value_fh}, $buf, 4096))
  792.             {
  793.                 print $fh $buf;
  794.             }
  795.         }
  796.         else
  797.         {
  798.             # This actually requires work. As with value(), the 60*57 is based
  799.             # on ideal Base-64 chunks, with the 60 part being arbitrary.
  800.             while (read($self->{value_fh}, $buf, 60*57))
  801.             {
  802.                 print $fh &MIME::Base64::encode_base64($buf, '');
  803.             }
  804.         }
  805.         print $fh '</base64>';
  806.         seek($self->{value_fh}, $self->{fh_pos}, 0);
  807.     }
  808. }
  809.  
  810. # This promises to be a big enough pain that I seriously considered opening
  811. # an anon-temp file (one that's unlinked for security, and survives only as
  812. # long as the FH is open) and passing that to serialize just to -s on the FH.
  813. # But I'll do this the "right" way instead...
  814. sub length
  815. {
  816.     my $self = shift;
  817.  
  818.     # Start with the constant bits
  819.     my $len = 17; # <base64></base64>
  820.  
  821.     if ($self->{inmem})
  822.     {
  823.         # If it's in-memory, it's cleartext. Size the encoded version
  824.         $len += length(MIME::Base64::encode_base64($self->{value}, ''));
  825.     }
  826.     else
  827.     {
  828.         if ($self->{encoded})
  829.         {
  830.             # We're lucky, it's already encoded in the file, and -s will do
  831.             $len += -s $self->{value_fh};
  832.         }
  833.         else
  834.         {
  835.             # Oh bugger. We have to encode it.
  836.             my $buf = '';
  837.             my $cnt = 0;
  838.  
  839.             $self->{fh_pos} = tell($self->{value_fh});
  840.             seek($self->{value_fh}, 0, 0);
  841.             while ($cnt = read($self->{value_fh}, $buf, 60*57))
  842.             {
  843.                 $len += length(MIME::Base64::encode_base64($buf, ''));
  844.             }
  845.             seek($self->{value_fh}, $self->{fh_pos}, 0);
  846.         }
  847.     }
  848.  
  849.     $len;
  850. }
  851.  
  852. # This allows writing the decoded data to an arbitrary file. It's useful when
  853. # an application has gotten a RPC::XML::base64 object back from a request, and
  854. # knows that it needs to go straight to a file without being completely read
  855. # into memory, first.
  856. sub to_file
  857. {
  858.     my ($self, $file) = @_;
  859.  
  860.     my ($fh, $buf, $do_close, $count) = (undef, '', 0, 0);
  861.  
  862.     if (ref $file and UNIVERSAL::isa($file, 'GLOB'))
  863.     {
  864.         $fh = $file;
  865.     }
  866.     else
  867.     {
  868.         require Symbol;
  869.         $fh = Symbol::gensym();
  870.         unless (open($fh, "> $file"))
  871.         {
  872.             $RPC::XML::ERROR = $!;
  873.             return -1;
  874.         }
  875.         binmode $fh;
  876.         $do_close++;
  877.     }
  878.  
  879.     # If all the data is in-memory, then we know that it's clear, and we
  880.     # don't have to jump through hoops in moving it to the filehandle.
  881.     if ($self->{inmem})
  882.     {
  883.         print $fh $self->{value};
  884.         $count = CORE::length($self->{value});
  885.     }
  886.     else
  887.     {
  888.         # Filehandle-to-filehandle transfer.
  889.  
  890.         # Now determine if the data can be copied over directly, or if we have
  891.         # to decode it along the way.
  892.         $self->{fh_pos} = tell($self->{value_fh});
  893.         seek($self->{value_fh}, 0, 0);
  894.         if ($self->{encoded})
  895.         {
  896.             # As with the caveat in value(), if the base-64 data doesn't have
  897.             # any line-breaks, no telling how much memory this will eat up.
  898.             local($^W) = 0; # Disable padding-length warnings
  899.             my $tmp_fh = $self->{value_fh};
  900.             while (defined($_ = <$tmp_fh>))
  901.             {
  902.                 $buf = MIME::Base64::decode_base64($_);
  903.                 print $fh $buf;
  904.                 $count += CORE::length($buf);
  905.             }
  906.         }
  907.         else
  908.         {
  909.             my $size;
  910.             while ($size = read($self->{value_fh}, $buf, 4096))
  911.             {
  912.                 print $fh $buf;
  913.                 $count += $size;
  914.             }
  915.         }
  916.         seek($self->{value_fh}, $self->{fh_pos}, 0);
  917.     }
  918.  
  919.     close($fh) if $do_close;
  920.     return $count;
  921. }
  922.  
  923. ###############################################################################
  924. #
  925. #   Package:        RPC::XML::fault
  926. #
  927. #   Description:    This is the class that encapsulates the data for a RPC
  928. #                   fault-response. Like the others, it takes the relevant
  929. #                   information and maintains it internally. This is put
  930. #                   at the end of the datum types, though it isn't really a
  931. #                   data type in the sense that it cannot be passed in to a
  932. #                   request. But it is separated so as to better generalize
  933. #                   responses.
  934. #
  935. ###############################################################################
  936. package RPC::XML::fault;
  937.  
  938. use strict;
  939. use vars qw(@ISA);
  940.  
  941. @ISA = qw(RPC::XML::struct);
  942.  
  943. # For our new(), we only need to ensure that we have the two required members
  944. sub new
  945. {
  946.     my $class = shift;
  947.     my @args = @_;
  948.  
  949.     my ($self, %args);
  950.  
  951.     $RPC::XML::ERROR = '';
  952.     if (ref($args[0]) and UNIVERSAL::isa($args[0], 'RPC::XML::struct'))
  953.     {
  954.         # Take the keys and values from the struct object as our own
  955.         %args = %{$args[0]->value('shallow')};
  956.     }
  957.     elsif (@args == 2)
  958.     {
  959.         # This is a special convenience-case to make simple new() calls clearer
  960.         %args = (faultCode   => RPC::XML::int->new($args[0]),
  961.                  faultString => RPC::XML::string->new($args[1]));
  962.     }
  963.     else
  964.     {
  965.         %args = @args;
  966.     }
  967.  
  968.     unless ($args{faultCode} and $args{faultString})
  969.     {
  970.         $class = ref($class) || $class;
  971.         $RPC::XML::ERROR = "${class}::new: Missing required struct fields";
  972.         return undef;
  973.     }
  974.     if (scalar(keys %args) > 2)
  975.     {
  976.         $class = ref($class) || $class;
  977.         $RPC::XML::ERROR = "${class}::new: Extra struct fields not allowed";
  978.         return undef;
  979.     }
  980.  
  981.     $self = $class->SUPER::new(%args);
  982. }
  983.  
  984. # This only differs from the display of a struct in that it has some extra
  985. # wrapped around it. Let the superclass as_string method do most of the work.
  986. sub as_string
  987. {
  988.     my $self = shift;
  989.  
  990.     '<fault><value>' . $self->SUPER::as_string . '</value></fault>';
  991. }
  992.  
  993. # Because of the slight diff above, length() has to be different from struct
  994. sub length
  995. {
  996.     my $self = shift;
  997.  
  998.     my $len = 30; # Constant XML content
  999.     $len += $self->SUPER::length;
  1000.  
  1001.     $len;
  1002. }
  1003.  
  1004. # Convenience methods:
  1005. sub code   { $_[0]->{faultCode}->value   }
  1006. sub string { $_[0]->{faultString}->value }
  1007.  
  1008. # This is the only one to override this method, for obvious reasons
  1009. sub is_fault { 1 }
  1010.  
  1011. ###############################################################################
  1012. #
  1013. #   Package:        RPC::XML::request
  1014. #
  1015. #   Description:    This is the class that encapsulates the data for a RPC
  1016. #                   request. It takes the relevant information and maintains
  1017. #                   it internally until asked to stringify. Only then is the
  1018. #                   XML generated, encoding checked, etc. This allows for
  1019. #                   late-selection of <methodCall> or <methodCallSet> as a
  1020. #                   containing tag.
  1021. #
  1022. #                   This class really only needs a constructor and a method
  1023. #                   to stringify.
  1024. #
  1025. ###############################################################################
  1026. package RPC::XML::request;
  1027.  
  1028. use strict;
  1029. use vars qw(@ISA);
  1030.  
  1031. ###############################################################################
  1032. #
  1033. #   Sub Name:       new
  1034. #
  1035. #   Description:    Creating a new request object, in this (reference) case,
  1036. #                   means checking the list of arguments for sanity and
  1037. #                   packaging it up for later use.
  1038. #
  1039. #   Arguments:      NAME      IN/OUT  TYPE      DESCRIPTION
  1040. #                   $class    in      scalar    Class/ref to bless into
  1041. #                   @argz     in      list      The exact disposition of the
  1042. #                                                 arguments is based on the
  1043. #                                                 type of the various elements
  1044. #
  1045. #   Returns:        Success:    object ref
  1046. #                   Failure:    undef, error in $RPC::XML::ERROR
  1047. #
  1048. ###############################################################################
  1049. sub new
  1050. {
  1051.     my $class = shift;
  1052.     my @argz = @_;
  1053.  
  1054.     my ($self, $name);
  1055.  
  1056.     $class = ref($class) || $class;
  1057.     $RPC::XML::ERROR = '';
  1058.  
  1059.     unless (@argz)
  1060.     {
  1061.         $RPC::XML::ERROR = 'RPC::XML::request::new: At least a method name ' .
  1062.             'must be specified';
  1063.         return undef;
  1064.     }
  1065.  
  1066.     if (UNIVERSAL::isa($argz[0], 'RPC::XML::request'))
  1067.     {
  1068.         # Maybe this will be a clone operation
  1069.     }
  1070.     else
  1071.     {
  1072.         # This is the method name to be called
  1073.         $name = shift(@argz);
  1074.         # All the remaining args must be data.
  1075.         @argz = RPC::XML::smart_encode(@argz);
  1076.         $self = { args => [ @argz ], name => $name };
  1077.         bless $self, $class;
  1078.     }
  1079.  
  1080.     $self;
  1081. }
  1082.  
  1083. # Accessor methods
  1084. sub name       { shift->{name}       }
  1085. sub args       { shift->{args} || [] }
  1086.  
  1087. ###############################################################################
  1088. #
  1089. #   Sub Name:       as_string
  1090. #
  1091. #   Description:    This is a fair bit more complex than the simple as_string
  1092. #                   methods for the datatypes. Express the invoking object as
  1093. #                   a well-formed XML document.
  1094. #
  1095. #   Arguments:      NAME      IN/OUT  TYPE      DESCRIPTION
  1096. #                   $self     in      ref       Invoking object
  1097. #                   $indent   in      scalar    Indention level for output
  1098. #
  1099. #   Returns:        Success:    text
  1100. #                   Failure:    undef
  1101. #
  1102. ###############################################################################
  1103. sub as_string
  1104. {
  1105.     my $self   = shift;
  1106.  
  1107.     my $text;
  1108.  
  1109.     $RPC::XML::ERROR = '';
  1110.  
  1111.     $text = qq(<?xml version="1.0" encoding="$RPC::XML::ENCODING"?>);
  1112.  
  1113.     $text .= "<methodCall><methodName>$self->{name}</methodName><params>";
  1114.     for (@{$self->{args}})
  1115.     {
  1116.         $text .= '<param><value>' . $_->as_string . '</value></param>';
  1117.     }
  1118.     $text .= '</params></methodCall>';
  1119.  
  1120.     $text;
  1121. }
  1122.  
  1123. # The difference between stringifying and serializing a request is much like
  1124. # the difference was for structs and arrays. The boilerplate is the same, but
  1125. # the destination is different in a sensitive way.
  1126. sub serialize
  1127. {
  1128.     my ($self, $fh) = @_;
  1129.  
  1130.     print $fh qq(<?xml version="1.0" encoding="$RPC::XML::ENCODING"?>);
  1131.  
  1132.     print $fh "<methodCall><methodName>$self->{name}</methodName><params>";
  1133.     for (@{$self->{args}})
  1134.     {
  1135.         print $fh '<param><value>';
  1136.         $_->serialize($fh);
  1137.         print $fh '</value></param>';
  1138.     }
  1139.     print $fh '</params></methodCall>';
  1140. }
  1141.  
  1142. # Compared to base64, length-calculation here is pretty easy, much like struct
  1143. sub length
  1144. {
  1145.     my $self = shift;
  1146.  
  1147.     my $len = 100 + length($RPC::XML::ENCODING); # All the constant XML present
  1148.     $len += length($self->{name});
  1149.  
  1150.     for (@{$self->{args}})
  1151.     {
  1152.         $len += 30; # Constant XML
  1153.         $len += $_->length;
  1154.     }
  1155.  
  1156.     $len;
  1157. }
  1158.  
  1159. ###############################################################################
  1160. #
  1161. #   Package:        RPC::XML::response
  1162. #
  1163. #   Description:    This is the class that encapsulates the data for a RPC
  1164. #                   response. As above, it takes the information and maintains
  1165. #                   it internally until asked to stringify. Only then is the
  1166. #                   XML generated, encoding checked, etc. This allows for
  1167. #                   late-selection of <methodResponse> or <methodResponseSet>
  1168. #                   as above.
  1169. #
  1170. ###############################################################################
  1171. package RPC::XML::response;
  1172.  
  1173. use strict;
  1174. use vars qw(@ISA);
  1175.  
  1176. ###############################################################################
  1177. #
  1178. #   Sub Name:       new
  1179. #
  1180. #   Description:    Creating a new response object, in this (reference) case,
  1181. #                   means checking the outgoing parameter(s) for sanity.
  1182. #
  1183. #   Arguments:      NAME      IN/OUT  TYPE      DESCRIPTION
  1184. #                   $class    in      scalar    Class/ref to bless into
  1185. #                   @argz     in      list      The exact disposition of the
  1186. #                                                 arguments is based on the
  1187. #                                                 type of the various elements
  1188. #
  1189. #   Returns:        Success:    object ref
  1190. #                   Failure:    undef, error in $RPC::XML::ERROR
  1191. #
  1192. ###############################################################################
  1193. sub new
  1194. {
  1195.     my $class = shift;
  1196.     my @argz = @_;
  1197.  
  1198.     my ($self, %extra, %attr);
  1199.  
  1200.     $class = ref($class) || $class;
  1201.  
  1202.     $RPC::XML::ERROR = '';
  1203.     if (! @argz)
  1204.     {
  1205.         $RPC::XML::ERROR = 'RPC::XML::response::new: One of a datatype, ' .
  1206.             'value or a fault object must be specified';
  1207.     }
  1208.     elsif (UNIVERSAL::isa($argz[0], 'RPC::XML::response'))
  1209.     {
  1210.         # This will eventually be a clone-operation. For now, just return in
  1211.         $self = $argz[0];
  1212.     }
  1213.     elsif (@argz > 1)
  1214.     {
  1215.         $RPC::XML::ERROR = 'RPC::XML::response::new: Responses may take ' .
  1216.             'only one argument';
  1217.     }
  1218.     else
  1219.     {
  1220.         $argz[0] = RPC::XML::smart_encode($argz[0]);
  1221.  
  1222.         $self = { value => $argz[0] };
  1223.         bless $self, $class;
  1224.     }
  1225.  
  1226.     $self;
  1227. }
  1228.  
  1229. # Accessor/status methods
  1230. sub value      { $_[0]->{value} }
  1231. sub is_fault   { $_[0]->{value}->is_fault }
  1232.  
  1233. ###############################################################################
  1234. #
  1235. #   Sub Name:       as_string
  1236. #
  1237. #   Description:    This is a fair bit more complex than the simple as_string
  1238. #                   methods for the datatypes. Express the invoking object as
  1239. #                   a well-formed XML document.
  1240. #
  1241. #   Arguments:      NAME      IN/OUT  TYPE      DESCRIPTION
  1242. #                   $self     in      ref       Invoking object
  1243. #                   $indent   in      scalar    Indention level for output
  1244. #
  1245. #   Returns:        Success:    text
  1246. #                   Failure:    undef
  1247. #
  1248. ###############################################################################
  1249. sub as_string
  1250. {
  1251.     my $self   = shift;
  1252.  
  1253.     my $text;
  1254.  
  1255.     $RPC::XML::ERROR = '';
  1256.  
  1257.     $text = qq(<?xml version="1.0" encoding="$RPC::XML::ENCODING"?>);
  1258.  
  1259.     $text .= '<methodResponse>';
  1260.     if ($self->{value}->isa('RPC::XML::fault'))
  1261.     {
  1262.         $text .= $self->{value}->as_string;
  1263.     }
  1264.     else
  1265.     {
  1266.         $text .= '<params><param><value>' . $self->{value}->as_string .
  1267.             '</value></param></params>';
  1268.     }
  1269.     $text .= '</methodResponse>';
  1270.  
  1271.     $text;
  1272. }
  1273.  
  1274. # See the comment for serialize() above in RPC::XML::request
  1275. sub serialize
  1276. {
  1277.     my ($self, $fh) = @_;
  1278.  
  1279.     print $fh qq(<?xml version="1.0" encoding="$RPC::XML::ENCODING"?>);
  1280.  
  1281.     print $fh '<methodResponse>';
  1282.     if ($self->{value}->isa('RPC::XML::fault'))
  1283.     {
  1284.         # This also bypasses a un-needed call to serialize in the struct
  1285.         # package, since we know by definition that there is no base64 data
  1286.         # in a fault.
  1287.         print $fh $self->{value}->as_string;
  1288.     }
  1289.     else
  1290.     {
  1291.         print $fh '<params><param><value>';
  1292.         $self->{value}->serialize($fh);
  1293.         print $fh '</value></param></params>';
  1294.     }
  1295.     print $fh '</methodResponse>';
  1296. }
  1297.  
  1298. # Compared to base64, length-calculation here is pretty easy, much like struct
  1299. sub length
  1300. {
  1301.     my $self = shift;
  1302.  
  1303.     my $len = 66 + length($RPC::XML::ENCODING); # All the constant XML present
  1304.  
  1305.     # This boilerplate XML is only present when it is NOT a fault
  1306.     $len += 47 unless ($self->{value}->isa('RPC::XML::fault'));
  1307.     $len += $self->{value}->length;
  1308.  
  1309.     $len;
  1310. }
  1311.  
  1312. 1;
  1313.  
  1314. __END__
  1315.  
  1316. =head1 NAME
  1317.  
  1318. RPC::XML - A set of classes for core data, message and XML handling
  1319.  
  1320. =head1 SYNOPSIS
  1321.  
  1322.     use RPC::XML;
  1323.  
  1324.     $req = RPC::XML::request->new('fetch_prime_factors',
  1325.                                   RPC::XML::int->new(985120528));
  1326.     ...
  1327.     $resp = RPC::XML::Parser->new()->parse(STREAM);
  1328.     if (ref($resp))
  1329.     {
  1330.         return $resp->value->value;
  1331.     }
  1332.     else
  1333.     {
  1334.         die $resp;
  1335.     }
  1336.  
  1337. =head1 DESCRIPTION
  1338.  
  1339. The B<RPC::XML> package is an implementation of the B<XML-RPC> standard.
  1340.  
  1341. The package provides a set of classes for creating values to pass to the
  1342. constructors for requests and responses. These are lightweight objects, most
  1343. of which are implemented as tied scalars so as to associate specific type
  1344. information with the value. Classes are also provided for requests, responses,
  1345. faults (errors) and a parser based on the L<XML::Parser> package from CPAN.
  1346.  
  1347. This module does not actually provide any transport implementation or
  1348. server basis. For these, see L<RPC::XML::Client> and L<RPC::XML::Server>,
  1349. respectively.
  1350.  
  1351. =head1 EXPORTABLE FUNCTIONS
  1352.  
  1353. At present, three simple functions are available for import. They must be
  1354. explicitly imported as part of the C<use> statement, or with a direct call to
  1355. C<import>:
  1356.  
  1357. =over 4
  1358.  
  1359. =item time2iso8601([$time])
  1360.  
  1361. Convert the integer time value in C<$time> (which defaults to calling the
  1362. built-in C<time> if not present) to a ISO 8601 string in the UTC time
  1363. zone. This is a convenience function for occassions when the return value
  1364. needs to be of the B<dateTime.iso8601> type, but the value on hand is the
  1365. return from the C<time> built-in.
  1366.  
  1367. =item smart_encode(@args)
  1368.  
  1369. Converts the passed-in arguments to datatype objects. Any that are already
  1370. encoded as such are passed through unchanged. The routine is called recursively
  1371. on hash and array references. Note that this routine can only deduce a certain
  1372. degree of detail about the values passed. Boolean values will be wrongly
  1373. encoded as integers. Pretty much anything not specifically recognizable will
  1374. get encoded as a string object. Thus, for types such as C<fault>, the ISO
  1375. time value, base-64 data, etc., the program must still explicitly encode it.
  1376. However, this routine will hopefully simplify things a little bit for a
  1377. majority of the usage cases.
  1378.  
  1379. =item bytelength([$string])
  1380.  
  1381. Returns the length of the string passed in, in bytes rather than characters.
  1382. In Perl prior to 5.6.0 when there was little or no Unicode support, this has
  1383. no difference from the C<length> function. if the B<bytes> pragme is
  1384. available, then the length measured is raw bytes, even when faced with
  1385. multi-byte characters. If no argument is passed in, operates on C<$_>.
  1386.  
  1387. =back
  1388.  
  1389. In addition to these three, the following "helper" functions are also
  1390. available. They may be imported explicitly, or via a tag of C<:types>:
  1391.  
  1392.     RPC_BOOLEAN RPC_INT RPC_I4 RPC_I8 RPC_DOUBLE
  1393.     RPC_DATETIME_ISO8601 RPC_BASE64 RPC_STRING
  1394.  
  1395. Each creates a data object of the appropriate type from a single value. They
  1396. are merely short-hand for calling the constructors of the data classes
  1397. directly.
  1398.  
  1399. All of the above (helpers and the first three functions) may be imported via
  1400. the tag C<:all>.
  1401.  
  1402. =head1 CLASSES
  1403.  
  1404. The classes provided by this module are broken into two groups: I<datatype>
  1405. classes and I<message> classes.
  1406.  
  1407. =head2 Data Classes
  1408.  
  1409. The following data classes are provided by this library. Each of these provide
  1410. at least the set of methods below. Note that these classes are designed to
  1411. create throw-away objects. There is currently no mechanism for changing the
  1412. value stored within one of these object after the constructor returns. It is
  1413. assumed that a new object would be created, instead.
  1414.  
  1415. The common methods to all data classes are:
  1416.  
  1417. =over 4
  1418.  
  1419. =item new($value)
  1420.  
  1421. Constructor. The value passed in is the value to be encapsulated in the new
  1422. object.
  1423.  
  1424. =item value
  1425.  
  1426. Returns the value kept in the object. Processes recursively for C<array> and
  1427. C<struct> objects.
  1428.  
  1429. =item as_string
  1430.  
  1431. Returns the value as a XML-RPC fragment, with the proper tags, etc.
  1432.  
  1433. =item serialize($filehandle)
  1434.  
  1435. Send the stringified rendition of the data to the given file handle. This
  1436. allows messages with arbitrarily-large Base-64 data within them to be sent
  1437. without having to hold the entire message within process memory.
  1438.  
  1439. =item length
  1440.  
  1441. Returns the length, in bytes, of the object when serialized into XML. This is
  1442. used by the client and server classes to calculate message length.
  1443.  
  1444. =item type
  1445.  
  1446. Returns the type of data being stored in an object. The type matches the
  1447. XML-RPC specification, so the normalized form C<datetime_iso8601> comes back
  1448. as C<dateTime.iso8601>.
  1449.  
  1450. =item is_fault
  1451.  
  1452. All types except the fault class return false for this. This is to allow
  1453. consistent testing of return values for fault status, without checking for a
  1454. hash reference with specific keys defined.
  1455.  
  1456. =back
  1457.  
  1458. The classes themselves are:
  1459.  
  1460. =over 4
  1461.  
  1462. =item RPC::XML::int
  1463.  
  1464. Creates an integer value. Constructor expects the integer value as an
  1465. argument.
  1466.  
  1467. =item RPC::XML::i4
  1468.  
  1469. This is like the C<int> class. Note that services written in strictly-typed
  1470. languages such as C, C++ or Java may consider the C<i4> and C<int> types as
  1471. distinct and different.
  1472.  
  1473. =item RPC::XML::i8
  1474.  
  1475. This represents an 8-byte integer, and is not officially supported by the
  1476. XML-RPC specification. This has been added to accommodate services already
  1477. in use that have chosen to add this extension.
  1478.  
  1479. =item RPC::XML::double
  1480.  
  1481. Creates a floating-point value.
  1482.  
  1483. =item RPC::XML::string
  1484.  
  1485. Creates an arbitrary string. No special encoding is done to the string (aside
  1486. from XML document encoding, covered later) with the exception of the C<E<lt>>,
  1487. C<E<gt>> and C<&> characters, which are XML-escaped during object creation,
  1488. and then reverted when the C<value> method is called.
  1489.  
  1490. =item RPC::XML::boolean
  1491.  
  1492. Creates a boolean value. The value returned will always be either of B<1>
  1493. or B<0>, for true or false, respectively. When calling the constructor, the
  1494. program may specify any of: C<0>, C<no>, C<false>, C<1>, C<yes>, C<true>.
  1495.  
  1496. =item RPC::XML::datetime_iso8601
  1497.  
  1498. Creates an instance of the XML-RPC C<dateTime.iso8601> type. The specification
  1499. for ISO 8601 may be found elsewhere. No processing is done to the data.
  1500.  
  1501. =item RPC::XML::base64
  1502.  
  1503. Creates an object that encapsulates a chunk of data that will be treated as
  1504. base-64 for transport purposes. The value may be passed in as either a string
  1505. or as a scalar reference. Additionally, a second (optional) parameter may be
  1506. passed, that if true identifies the data as already base-64 encoded. If so,
  1507. the data is decoded before storage. The C<value> method returns decoded data,
  1508. and the C<as_string> method encodes it before stringification.
  1509.  
  1510. Alternately, the constructor may be given an open filehandle argument instead
  1511. of direct data. When this is the case, the data is never read into memory in
  1512. its entirety, unless the C<value> or C<as_string> methods are called. This
  1513. allows the manipulation of arbitrarily-large Base-64-encoded data chunks. In
  1514. these cases, the flag (optional second argument) is still relevant, but the
  1515. data is not pre-decoded if it currently exists in an encoded form. It is only
  1516. decoded as needed. Note that the filehandle passed must be open for reading,
  1517. at least. It will not be written to, but it will be read from. The position
  1518. within the file will be preserved between operations.
  1519.  
  1520. Because of this, this class supports a special method called C<to_file>, that
  1521. takes one argument. The argument may be either an open, writable filehandle or
  1522. a string. If it is a string, C<to_file> will attempt to open it as a file and
  1523. write the I<decoded> data to it. If the argument is a an open filehandle, the
  1524. data will be written to it without any pre- or post-adjustment of the handle
  1525. position (nor will it be closed upon completion). This differs from the
  1526. C<serialize> method in that it always writes the decoded data (where the other
  1527. always writes encoded data), and in that the XML opening and closing tags are
  1528. not written. The return value of C<to_file> is the size of the data written
  1529. in bytes.
  1530.  
  1531. =item RPC::XML::array
  1532.  
  1533. Creates an array object. The constructor takes zero or more data-type
  1534. instances as arguments, which are inserted into the array in the order
  1535. specified. C<value> returns an array reference of native Perl types. If a
  1536. non-null value is passed as an argument to C<value()>, then the array
  1537. reference will contain datatype objects (a shallow rather than deep copy).
  1538.  
  1539. =item RPC::XML::struct
  1540.  
  1541. Creates a struct object, the analogy of a hash table in Perl. The keys are
  1542. ordinary strings, and the values must all be data-type objects. The C<value>
  1543. method returns a hash table reference, with native Perl types in the values.
  1544. Key order is not preserved. Key strings are now encoded for special XML
  1545. characters, so the use of such (C<E<lt>>, C<E<gt>>, etc.) should be
  1546. transparent to the user. If a non-null value is passed as an argument to
  1547. C<value()>, then the hash reference will contain the datatype objects rather
  1548. than native Perl data (a shallow vs. deep copy, as with the array type above).
  1549.  
  1550. When creating B<RPC::XML::struct> objects, there are two ways to pass the
  1551. content in for the new object: Either an existing hash reference may be passed,
  1552. or a series of key/value pairs may be passed. If a reference is passed, the
  1553. existing data is copied (the reference is not re-blessed), with the values
  1554. encoded into new objects as needed.
  1555.  
  1556. =item RPC::XML::fault
  1557.  
  1558. A fault object is a special case of the struct object that checks to ensure
  1559. that there are two keys, C<faultCode> and C<faultString>.
  1560.  
  1561. As a matter of convenience, since the contents of a B<RPC::XML::fault>
  1562. structure are specifically defined, the constructor may be called with exactly
  1563. two arguments, the first of which will be taken as the code, and the second
  1564. as the string. They will be converted to RPC::XML types automatically and
  1565. stored by the pre-defined key names.
  1566.  
  1567. Also as a matter of convenience, the fault class provides the following
  1568. accessor methods for directly retrieving the integer code and error string
  1569. from a fault object:
  1570.  
  1571. =over 4
  1572.  
  1573. =item code
  1574.  
  1575. =item string
  1576.  
  1577. =back
  1578.  
  1579. Both names should be self-explanatory. The values returned are Perl values,
  1580. not B<RPC::XML> class instances.
  1581.  
  1582. =back
  1583.  
  1584. =head2 Message Classes
  1585.  
  1586. The message classes are used both for constructing messages for outgoing
  1587. communication as well as representing the parsed contents of a received
  1588. message. Both implement the following methods:
  1589.  
  1590. =over 4
  1591.  
  1592. =item new
  1593.  
  1594. This is the constructor method for the two message classes. The response class
  1595. may have only a single value (as a response is currently limited to a single
  1596. return value), and requests may have as many arguments as appropriate. In both
  1597. cases, the arguments are passed to the exported C<smart_encode> routine
  1598. described earlier.
  1599.  
  1600. =item as_string
  1601.  
  1602. Returns the message object expressed as an XML document. The document will be
  1603. lacking in linebreaks and indention, as it is not targeted for human reading.
  1604.  
  1605. =item serialize($filehandle)
  1606.  
  1607. Serialize the message to the given file-handle. This avoids creating the entire
  1608. XML message within memory, which may be relevant if there is especially-large
  1609. Base-64 data within the message.
  1610.  
  1611. =item length
  1612.  
  1613. Returns the total size of the message in bytes, used by the client and server
  1614. classes to set the Content-Length header.
  1615.  
  1616. =back
  1617.  
  1618. The two message-object classes are:
  1619.  
  1620. =over 4
  1621.  
  1622. =item RPC::XML::request
  1623.  
  1624. This creates a request object. A request object expects the first argument to
  1625. be the name of the remote routine being called, and all remaining arguments
  1626. are the arguments to that routine. Request objects have the following methods
  1627. (besides C<new> and C<as_string>):
  1628.  
  1629. =over 4
  1630.  
  1631. =item name
  1632.  
  1633. The name of the remote routine that the request will call.
  1634.  
  1635. =item args
  1636.  
  1637. Returns a list reference with the arguments that will be passed. No arguments
  1638. will result in a reference to an empty list.
  1639.  
  1640. =back
  1641.  
  1642. =item RPC::XML::response
  1643.  
  1644. The response object is much like the request object in most ways. It may
  1645. take only one argument, as that is all the specification allows for in a
  1646. response. Responses have the following methods (in addition to C<new> and
  1647. C<as_string>):
  1648.  
  1649. =over 4
  1650.  
  1651. =item value
  1652.  
  1653. The value the response is returning. It will be a RPC::XML data-type.
  1654.  
  1655. =item is_fault
  1656.  
  1657. A boolean test whether or not the response is signalling a fault. This is
  1658. the same as taking the C<value> method return value and testing it, but is
  1659. provided for clarity and simplicity.
  1660.  
  1661. =back
  1662.  
  1663. =back
  1664.  
  1665. =head1 DIAGNOSTICS
  1666.  
  1667. All constructors (in all data classes) return C<undef> upon failure, with the
  1668. error message available in the package-global variable B<C<$RPC::XML::ERROR>>.
  1669.  
  1670. =head1 GLOBAL VARIABLES
  1671.  
  1672. The following global variables may be changed to control certain behavior of
  1673. the library. All variables listed below may be imported into the application
  1674. namespace when you C<use> B<RPC::XML>:
  1675.  
  1676. =over 4
  1677.  
  1678. =item $ENCODING
  1679.  
  1680. This variable controls the character-set encoding reported in outgoing XML
  1681. messages. It defaults to C<us-ascii>, but may be set to any value recognized
  1682. by XML parsers.
  1683.  
  1684. =item $FORCE_STRING_ENCODING
  1685.  
  1686. By default, C<smart_encode> uses heuristics to determine what encoding
  1687. is required for a data type. For example, C<123> would be encoded as C<int>,
  1688. where C<3.14> would be encoded as C<double>. In some situations it may be
  1689. handy to turn off all these heuristics, and force encoding of C<string> on
  1690. all data types encountered during encoding. Setting this flag to C<true>
  1691. will do just that.
  1692.  
  1693. Defaults to C<false>.
  1694.  
  1695. =back
  1696.  
  1697. =head1 CAVEATS
  1698.  
  1699. This began as a reference implementation in which clarity of process and
  1700. readability of the code took precedence over general efficiency. It is now
  1701. being maintained as production code, but may still have parts that could be
  1702. written more efficiently.
  1703.  
  1704. =head1 CREDITS
  1705.  
  1706. The B<XML-RPC> standard is Copyright (c) 1998-2001, UserLand Software, Inc.
  1707. See L<http://www.xmlrpc.com> for more information about the B<XML-RPC>
  1708. specification.
  1709.  
  1710. =head1 LICENSE
  1711.  
  1712. This module and the code within are released under the terms of the Artistic
  1713. License 2.0
  1714. (http://www.opensource.org/licenses/artistic-license-2.0.php). This code may
  1715. be redistributed under either the Artistic License or the GNU Lesser General
  1716. Public License (LGPL) version 2.1
  1717. (http://www.opensource.org/licenses/lgpl-license.php).
  1718.  
  1719. =head1 SEE ALSO
  1720.  
  1721. L<RPC::XML::Client>, L<RPC::XML::Server>, L<RPC::XML::Parser>, L<XML::Parser>
  1722.  
  1723. =head1 AUTHOR
  1724.  
  1725. Randy J. Ray <rjray@blackperl.com>
  1726.  
  1727. =cut
  1728.